home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 050 / madtrb7.arc / BLIST.DOC < prev    next >
Text File  |  1985-12-01  |  898b  |  23 lines

  1. BLIST.DOC
  2.  
  3. BList is a Turbo Pascal Source Code lister and BEGIN/END Counter
  4. program.  It can print a listing to Console or Printer, with
  5. optional begin/end, case/end, and record/end counter.  It was
  6. initially published in the Aug./Sept. issue of TUG Lines.
  7.  
  8. This version of the code is specific to CP/M-80 because the program
  9. looks for a parameter passed by CP/M at absolute location $80.
  10. However, I believe it can be easily modified for MS-DOS.  The
  11. program PARAMS.PAS (published in Jun./July issue of TUG Lines)
  12. implies that only a few declarations need to be changed in the
  13. BLIST.PAS program.  The following declarations should be changed
  14. in the GET_IN_FILE procedure:
  15.  
  16. Var FNam: String[14];
  17.     Parm: String[14] Absolute CSeg:$0081;
  18.     ParmLth: Byte Absolute CSeg:$0080;
  19.     Existing: Boolean;
  20.  
  21. ---X---
  22.  
  23. BLIST.PAS program will not compile under DOS - Turbo Pascal 3.01a.